home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 11 / CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso / www / show_www < prev    next >
AmigaDOS Script File  |  1997-04-17  |  598b  |  31 lines

  1. .key url
  2. .bra {
  3. .ket }
  4.  
  5. set Browser `RequestChoice "Browse Web Pages" "Which WWW browser would you like to use?" "AWeb|IBrowse|Voyager|Cancel"`
  6.  
  7. if $Browser EQ 0
  8.     quit
  9.     endif
  10.  
  11. if NOT $CDInit EQ TRUE
  12.     execute :InitCD
  13.     endif
  14.  
  15. if $Browser EQ 1
  16.     Run >NIL: WWW:AWeb3/AWebDemo LOCAL {url$WWW:AWeb3/CUdemo.html}
  17.     quit
  18.     endif
  19.  
  20. if $Browser EQ 2
  21.     Run >NIL: WWW:IBrowse/IBrowse file://localhost/{url$WWW:IBrowse/CUdemo.html} CONFIGDIR WWW:IBrowse1.01
  22.     quit
  23.     endif
  24.  
  25.  
  26. if $Browser EQ 3
  27.     Run >NIL: WWW:Voyager/V file://localhost/{url$WWW:Voyager/CUstart.html}
  28.     quit
  29.     endif
  30.  
  31.